home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / FPSE_src / system / amiga / plugin / joy / makefile < prev   
Encoding:
Makefile  |  2000-01-01  |  335 b   |  21 lines

  1. #
  2. # Makefile for FPSE/Amiga plugins
  3. #
  4.  
  5. PLUGIN = joy.a
  6.  
  7. OBJECTS = joy.o
  8.  
  9. all: $(OBJECTS)
  10.     rm -f joy.a
  11.     ppc-amigaos-ar cru $(PLUGIN) $(OBJECTS)
  12.     ppc-amigaos-ranlib $(PLUGIN)
  13.     copy $(PLUGIN) /$(PLUGIN)
  14.  
  15. clean: 
  16.     rm -f *.o *.a
  17.  
  18. %.o: %.c
  19.     pgcc -V 2.95.2 -warpup -DMSB_FIRST -c -I../../../../include -Wall -O3 -fomit-frame-pointer $< -o $@
  20.  
  21.